.sponsors-introduction {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10%;
}

.sponsors-introduction h4 {
  font-size: 2em;
  color: white;
}

.sponsors-introduction span {
  /* global 94%+ browsers support */
  background: linear-gradient(
    90deg,
    rgba(31, 103, 161, 1) 0%,
    rgba(31, 103, 161, 1) 50%,
    rgba(30, 41, 78, 1) 100%
  );
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.sponsors {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  height: 100vh;
  padding-bottom: 600px;
}

.sponsors .box::before {
  content: "";
  position: absolute;
  inset: -10px 50px;
  border-top: 4px solid var(--clr);
  border-bottom: 4px solid var(--clr);
  z-index: -1;
  transform: skewY(15deg);
  transition: 0.5s ease-in-out;
}

.sponsors .box:hover::before {
  transform: skewY(0deg);
  inset: -10px 40px;
}

.sponsors .box::after {
  content: "";
  position: absolute;
  inset: 60px -10px;
  border-left: 4px solid var(--clr);
  border-right: 4px solid var(--clr);
  z-index: -1;
  transform: skew(15deg);
  transition: 0.5s ease-in-out;
}

.sponsors .box:hover::after {
  transform: skew(0deg);
  inset: 40px -10px;
}

.sponsors .box {
  position: relative;
  width: 300px;
  height: 350px;
  background-color: rgb(39, 40, 44);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.sponsors .box .content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sponsors .box .content .icon {
  color: var(--clr);
  width: 80px;
  height: 80px;
  box-shadow: 0 0 0 4px var(--sponsors-card-color), 0 0 0 6px var(--clr);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5em;
  background: var(--sponsors-card-color);
  transition: 0.5s ease-in-out;
}

.sponsors .box:hover .content .icon {
  /* background : var(--clr); */
  background: var(--sponsors-card-color);
  box-shadow: 0 0 0 4px var(--sponsors-card-color), 0 0 0 300px var(--clr);
}

.sponsors .box .content .text a {
  position: relative;
  background: var(--clr);
  color: var(--sponsors-card-color);
  padding: 8px 15px;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  margin-top: 25px;
  transition: 0.5s ease-in-out;
  width: 135px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsors .box:hover .content .text a {
  background: var(--sponsors-card-color);
  color: var(--clr);
}

@media (max-width: 600px) {
  .sponsors-introduction h4 {
    text-align: center;
  }
}
